diff options
Diffstat (limited to 'src/app/video/[animeId]')
| -rw-r--r-- | src/app/video/[animeId]/page.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/video/[animeId]/page.jsx b/src/app/video/[animeId]/page.jsx index 02f6197..d475d72 100644 --- a/src/app/video/[animeId]/page.jsx +++ b/src/app/video/[animeId]/page.jsx @@ -8,6 +8,8 @@ import { import "../video.css"; import { redirect } from "next/navigation"; +export const runtime = 'edge'; + export default async function Video({ params }) { const id = params.animeId; |